home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
programming
/
other
/
wild
/
include
/
clib
/
ppct_protos.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-05-25
|
463b
|
14 lines
#ifndef CLIB_PPCT_H
#define CLIB_PPCT_H
#include <extensions/ppct.h>
struct ppct *MakePPCT(struct TagItem *tags);
void FreePPCT(struct ppct *ppct);
ULONG FallPPCT(struct ppct *ppct,ULONG color);
void ImagePPCT(struct ppct *ppct,ULONG *trueimage,UBYTE *chunkyimage,ULONG numofpixels);
ULONG *PaletteToRGB32(ULONG *palette,ULONG numofcols,ULONG firstcol);
void FreeRGB32(ULONG *rgb32);
ULONG *RGB32ToPalette(ULONG *rgb32);
void FreePalette(ULONG *palette);
#endif